C1.DataCollection Assembly / C1.DataCollection Namespace / C1DynamicList<T> Class / GetItems(Boolean,Nullable<Int32>,Nullable<Int32>) Method
Only return those items that aren't null. Passing this parameter to true is convenient for huge lists having mostly nulls.
The starting index to return items.
The last index to return items.

In This Topic
GetItems(Boolean,Nullable<Int32>,Nullable<Int32>) Method
In This Topic
Returns the items in the list.
Syntax
'Declaration
 
Public Function GetItems( _
   Optional ByVal onlyNonNullItems As Boolean, _
   Optional ByVal from As Nullable(Of Integer), _
   Optional ByVal to As Nullable(Of Integer) _
) As IEnumerable(Of Tuple(Of Integer,T))
 

Parameters

onlyNonNullItems
Only return those items that aren't null. Passing this parameter to true is convenient for huge lists having mostly nulls.
from
The starting index to return items.
to
The last index to return items.
See Also